home *** CD-ROM | disk | FTP | other *** search
/ PC Gamer (Italian) 28 / PC Gamer IT CD 28 1-2.iso / MEDIA / REVIEWS.DXR / Fields_38_selection.ls < prev    next >
Encoding:
Text File  |  1997-12-01  |  357 b   |  20 lines

  1. on mouseDown
  2.   global gTB
  3.   set ml to -999
  4.   repeat while the mouseDown
  5.     if (the mouseLine > 0) and (the mouseLine <> ml) then
  6.       set ml to the mouseLine
  7.       set err to mGo(gTB, ml)
  8.       CheckError(err, "mGo")
  9.       updateDisplay()
  10.       next repeat
  11.     end if
  12.     if the mouseLine < 0 then
  13.       pass()
  14.     end if
  15.   end repeat
  16. end
  17.  
  18. on mouseUp
  19. end
  20.